(MC - 9 - 37) A bank has unlimited supply of Rs 3 and Rs 5 notes. Prove that it can pay out any amount above Rs 8.
Attendance: Khushi, Diya, Damini, Arjun
Class Notes:
Recursion means solving by self reference. Lets take an example.
The first Jew was Abraham's wife, Sarah. After that anyone's who's mother is a Jew is a Jew. Can we write a procedure (or a program) to figure out if a given person is a Jew?
Instructor Notes: Get each kid to write even if they are using plain english, not just state verbally. Make sure they get the logic before they write it
Sample program below:
FUNCTION isAJew(person):
IF person is Abraham's wife Sarah, THEN:
return true
ELSE:
return isAJew(person's mother)
END IF
Instructor Notes: Explain the program syntax. Draw a correspondence to base case and induction step in relation to Induction. What's the difference between recursion and induction?
Note that induction is more than a proof of a mathematical formula. Recursion is a procedure of solving the problem - the "how" and not just the "what"
What is wrong with the program above?
If someone is a Jew, this program terminates; if someone is not a Jew, this goes on infinitely. So we need a minor correction
FUNCTION isAJew(person):
IF person is Abraham's wife Sarah, THEN:
return true
ELSE IF person was born before Sarah was born, THEN:
return false
ELSE:
return isAJew(person's mother)
END IF
Tower of Hanoi
(MC - 9 - 4) Tower of Hanoi - explain the problem to students. There are monks in a monastry in Hanoi, who are continuously moving a stack of 64 discs from one spindle to another, using a third. When they finish the world will end.
Is it always possible to move all the rings to one of the free spindles? How?
Can you figure out the number of moves to make the transfer? Apply induction to prove (2^n -1)
Can you now think about a procedure for solving it?
Instructor Notes: By the above example, it should be clear that induction is not very helpful to determine the answer - only to prove it when we do have a hypothesis.
Step 1: Move (n-1) disks from source to spare spindle using the destination spindle
Step 2: Move the nth disk from source to destination spindle
Step 3: Move the (n-1) disks from spare to destination spindle using the source spindle
On the above web page, use the tree notion as an alternate representation of what's going on
So how long will it take the monks in Hanoi?
2^64-1 steps. Even if each step takes a millisecond, it would take them about 585 million years - we are safe!
Homework:
The Gossip Problem - Everyone knows something that nobody else knows. But everybody else wants to know! That's why we need gossip. To make that a bit more mathematical: person #1, 2, 3, ..., n each know a unique piece of information. When two people talk, they “gossip”, exchanging all the pieces of information they have acquired. How many conversations (with two people at a time) are necessary in order that everyone will know all the information?
With 1 person it's too easy: no talking is necessary, the 1 person already knows everything. With 2 people it's still pretty easy: one conversation and they exchange their information. How about with 3 people? One conversation clearly isn't enough. Can they do it with 2, or do they need all three?
With four people things start to get interesting. There are 6 possible conversations: are they all necessary? What strategies can you use to avoid unnecessary conversations?
What happens with five people?
Can you find a strategy with n people that, instead of the (n2 – n)/2 possible conversations, takes a lot less - like only 2n?
Can you, at least for large n, do it with 2n – 1? How about 2n – 3? Can you do 2n – 4?
Can you beat 2n – 4?
Can you write a recursive program for solving this?